home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 51741 / 51741.xpi / chrome / content / lib / documents.js < prev    next >
Text File  |  2010-02-01  |  756b  |  31 lines

  1. (function()
  2. {
  3.     //returns the current focused document-REVIEW
  4.     this.documentGetFocused = function()
  5.     {
  6.         return window.top.getBrowser().browsers[window.top.getBrowser().mTabBox.selectedIndex].contentDocument;
  7.     }
  8.     //returns the  content of the metadescription of a document 
  9.     this.documentGetMetaDescription = function(aDoc)
  10.     {
  11.         var tobj = aDoc.evaluate("//*/meta[@name='DESCRIPTION']|//*/meta[@name='description']", aDoc, null, XPathResult.ANY_TYPE, null);
  12.         var metaTag = tobj.iterateNext();
  13.         if(metaTag)
  14.         {
  15.             return metaTag.getAttribute('content');
  16.         }
  17.         else
  18.         {
  19.             return '';
  20.         }
  21.     }
  22.     //gets the title of the  aTab-REVIEW
  23.     this.documentGetTitle = function(aDoc)
  24.     {
  25.         return String(aDoc.title);
  26.     }
  27.  
  28.     return null;
  29.  
  30. }).apply(metaTitleDescriptionOnTop);
  31.